
body {
  background-color: #fff;
  
}

.card-img-box {
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .card-img-box:hover {
    border-color: #007bff;
  }
  
  .card-img-box img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .caption {
    background-color: #003f7f;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
  }
  
  /* Optional: Add an active class for JS interaction */
  .card-img-box.active {
    border-color: #ff5722;
  }
  

  body {
   
    background-color: #f9f9f9;
    color: #333;
  }
  
  .about-section {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom:40px;
  }
  
  .about-section h1, 
  .about-section h2 {
    color: #0056b3;
  }
  
  .about-section h4, 
  .about-section h5 {
    color: #004080;
  }
  
  .about-section ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .about-section ul li {
    margin-bottom: 10px;
  }
  
  .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666;
  }